inspector: Remove action support temporarily
authorMatthias Clasen <mclasen@redhat.com>
Sun, 19 Jul 2020 02:28:03 +0000 (22:28 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Mon, 20 Jul 2020 12:24:14 +0000 (08:24 -0400)
This is using the action muxer as a GActionGroup,
and we want to remove that interface from GtkActionMuxer.

The support will come back later.

gtk/inspector/actions.c

index e077cbd0741e4aeed7e7141fdabcea5241fdf9a1..467af310e86a26f271ba5c21c58cf1dbe339e619 100644 (file)
@@ -373,11 +373,13 @@ gtk_inspector_actions_set_object (GtkInspectorActions *sl,
     add_group (sl, page, G_ACTION_GROUP (object));
   else if (GTK_IS_WIDGET (object))
     {
+#if 0
       GtkActionMuxer *muxer;
 
       muxer = _gtk_widget_get_action_muxer (GTK_WIDGET (object), FALSE);
       if (muxer)
         add_group (sl, page, G_ACTION_GROUP (muxer));
+#endif
     }
 
   gtk_column_view_sort_by_column (GTK_COLUMN_VIEW (sl->list), sl->name, GTK_SORT_ASCENDING);